home *** CD-ROM | disk | FTP | other *** search
/ Network CD 1 / Network CD.iso / others / emit / i.pre.h < prev    next >
C/C++ Source or Header  |  1988-01-30  |  1KB  |  53 lines

  1. /* i.pre.h    Justin V. McCormick 10/2/86
  2.  * The kitchen-sink include file for Manx C precompiler.
  3.  * Compile with : cc +Hi.pre i.pre.h
  4.  *
  5.  */
  6. #include <graphics/gfxbase.h>
  7. #include <graphics/clip.h>
  8. #include <graphics/text.h>
  9. #include <graphics/rastport.h>
  10. #include <graphics/sprite.h>
  11. #include <libraries/dos.h>
  12. #include <libraries/dosextens.h>
  13. #include <exec/memory.h>
  14. #include <exec/devices.h>
  15. #include <exec/tasks.h>
  16. #include <exec/alerts.h>
  17. #include <exec/io.h>
  18. #include <stdio.h>
  19. #include <fcntl.h>
  20. #include <time.h>
  21. #include <ctype.h>
  22. #include <errno.h>
  23. #include <math.h>
  24. #include <functions.h>
  25. #include <clib/macros.h>
  26. #include <devices/printer.h>
  27. #include <devices/serial.h>
  28. #include <devices/timer.h>
  29. #include <intuition/intuitionbase.h>
  30. #include <intuition/intuition.h>
  31.  
  32. #define WSTR(x)        (Write(stout, (x), (long)strlen((x))))
  33. #define WCHR(x)        (Write(stout, (UBYTE *)(x), 1L))
  34. #define WNL        (Write(stout, "\n", 1L))
  35. #define WS        (WriteStr(ws))
  36. #define RSTR(x, l)    (Read(stin, (x), (l))    
  37. #define RCHR(x)        (Read(stin, (x), 1L))
  38. #define SIZEOF(x)    (long)(sizeof((x)))
  39.  
  40. extern struct FileHandle *stin, *stout, *sterr;
  41. extern long RangeRand();
  42. extern char *strcpy(), *strncpy(), *strcat(), *strncat(), *strchr(), *strrchr(), *index(), *rindex();
  43. extern char *malloc(), *calloc(), *realloc();
  44. extern long atol();
  45. extern double atof();
  46. extern char *gets(), *fgets();
  47. extern long lseek();
  48. extern double ran();
  49. extern void *sbrk();
  50. extern char *getenv();
  51. extern char *mktemp();
  52. extern char *tmpnam();
  53.